home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / boxes / vbabout / genabout.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1995-12-29  |  2.1 KB  |  66 lines

  1. VERSION 4.00
  2. Begin VB.Form frmMain 
  3.    Caption         =   "Generic AboutBox"
  4.    ClientHeight    =   2175
  5.    ClientLeft      =   2070
  6.    ClientTop       =   1605
  7.    ClientWidth     =   3975
  8.    Height          =   2580
  9.    Icon            =   "genabout.frx":0000
  10.    Left            =   2010
  11.    LinkTopic       =   "Form1"
  12.    ScaleHeight     =   2175
  13.    ScaleWidth      =   3975
  14.    Top             =   1260
  15.    Width           =   4095
  16.    Begin VB.CommandButton cmdAbout 
  17.       Caption         =   "&About"
  18.       Height          =   375
  19.       Left            =   240
  20.       TabIndex        =   0
  21.       Top             =   120
  22.       Width           =   975
  23.    End
  24.    Begin VB.Label Label3 
  25.       Caption         =   "MMC Software            info@mmcsoftware.com"
  26.       Height          =   195
  27.       Left            =   300
  28.       TabIndex        =   3
  29.       Top             =   1860
  30.       Width           =   3375
  31.    End
  32.    Begin VB.Label Label2 
  33.       Caption         =   "Sample by David Warren        CIS:72500,1406"
  34.       Height          =   195
  35.       Left            =   300
  36.       TabIndex        =   2
  37.       Top             =   1620
  38.       Width           =   3375
  39.    End
  40.    Begin VB.Label Label1 
  41.       Caption         =   "Using the values assigned in Make EXE Options, a single About Box form can be used for all your projects."
  42.       Height          =   675
  43.       Left            =   300
  44.       TabIndex        =   1
  45.       Top             =   600
  46.       Width           =   3375
  47.    End
  48. Attribute VB_Name = "frmMain"
  49. Attribute VB_Creatable = False
  50. Attribute VB_Exposed = False
  51. 'Generic About Box Sample
  52. ' for VB4
  53. ' by David Warren
  54. ' MMC Software
  55. ' E-Mail: info@mmcsoftware.com
  56. ' or 72500.1406@compuserve.com
  57. ' Visit our home page at http://www.ccnet.com/~davidw
  58. '***********************************************
  59. ' CompuServe users can visit our section of the
  60. ' Windows Networking Forum!
  61. ' GO WINETA and look for us in Section 18
  62. '***********************************************
  63. Private Sub cmdAbout_Click()
  64.     frmAbout.Show vbModal
  65. End Sub
  66.